home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 6 / CU Amiga Magazine's Super CD-ROM 06 (1996)(EMAP Images)(GB)(Track 1 of 4)[!][issue 1997-01].iso / cucd / cdrom / optycdplayer / arexx / help.rexx < prev    next >
OS/2 REXX Batch file  |  1996-10-18  |  326b  |  16 lines

  1. /*
  2. ** This script shows how to obtain the list of ARexx commands.
  3. */
  4.  
  5. options results
  6. address 'OPTYCDPLAYER'
  7.  
  8. /* read the list into a temporary file */
  9. 'help t:_tmp'
  10.  
  11. /* type the file to stdout */
  12. address command "type t:_tmp >con:////Rayvery/CLOSE/WAIT"
  13.  
  14. /* delete the temporary file */
  15. address command "delete >nil: t:_tmp"
  16.